home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / e / ecprefs.lha / EcPrefs.doc < prev   
Text File  |  1995-07-31  |  2KB  |  69 lines

  1.       
  2.       ECPrefs  V1.2, by Andre Lapointe, 1995.
  3.  
  4.  This program is useful to Amiga E programmers only.
  5.  
  6.  All coding is in assembler using Macro68, for speed
  7.  and efficiency.
  8.  
  9.  Total memory usage less than 12k, no MUI, GadTools
  10.  libs etc.
  11.  
  12.  Works with public screens, has font sensitive window.
  13.  
  14.  EC v. 32a will run on OS 1.3 and so will EcPrefs.
  15.  
  16.  Tested on my Amiga 3000 with Enforcer and on 'OS 1.3'
  17.  and 'OS 3.1'.
  18.  
  19.  ECPrefs is POSTCARDWARE, so there are no guarantees with
  20.  this program, although all reasonable care has been taken.
  21.  
  22.  If you find ECPrefs helpful or would like to see
  23.  improvements, then send a post card to;
  24.  
  25.  PO. Box 7, Forest Hill 4342, Q.L.D, Australia.
  26.  
  27.  ECPrefs with no command line arguments will bring up
  28.  the program's GUI. With the menu and buttons you can
  29.  setup the EC compiler flags, for Edbug, Aprof etc.
  30.  
  31.  You can use the keys, 1 to 9, and letters 'U', 'S' as
  32.  keyboard shortcuts. There are also menu shortcuts.
  33.  
  34.  All information can then be saved to an environment
  35.  file in ENV: or ENVARC:, with the name EC.prefs.
  36.  
  37.  All this is to make life easier when using Arexx. :-)
  38.  
  39.  The following example is from part of my compile script.
  40.  
  41.  IF Exists('ENV:EC.prefs') THEN DO
  42.  ok=Open(readhandle,'ENV:EC.prefs','read')
  43.  optec=ReadLn(readhandle)
  44.  ok=Close(readhandle)
  45.  END
  46.  ELSE optec=''
  47.  'QUERY ANYTEXT'
  48.  IF (result='TRUE') THEN 'QUERY DOC VAR filepath'
  49.  IF (Upper(Right(result,2))='.E') THEN DO
  50.  'QUERY MODIFY'
  51.  IF (result='TRUE') THEN 'SAVE ALL'
  52.  filename=Left(filepath,Length(filepath)-2)
  53.  Address Command 'ExTools:EC > T:E-error 'optec' 'filename''
  54.  'Beep'
  55.  END
  56.  ELSE
  57.  DO
  58.  'REQUEST BODY=' Not an Amiga E sources file.'
  59.  END
  60.  'UNLOCK'
  61.  EXIT
  62.  
  63.  For a better understanding, on the ECPrefs buttons, please
  64.  read the Amiga E docs.
  65.  
  66.  E-Mail: logic@iccu6.ipswichcity.qld.gov.au
  67.  
  68.     The end
  69.